> ## Documentation Index
> Fetch the complete documentation index at: https://sequence-0fb8d9e6-api_docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Transfers

In order to transfer ETH (or the gas currency for your network), it is recommended to use `TranferEth.CreateTransaction`

```csharp theme={null}
EthTransaction transferTransaction = await TransferEth.CreateTransaction(client, wallet, recipientAddress, DecimalNormalizer.Normalize(1));
TransactionReceipt receipt = await wallet.SendTransactionAndWaitForReceipt(client, transferTransaction);
```

Behind the scenes, this will create a `GasLimitEstimator` which will construct the transaction for you - including determining the appropriate gasPrice, gasLimit, and nonce.
